pass by value
Type
glossary
Description
A way of using parameters where the values of the arguments are passed to the called handler, but changing the parameters within the called handler has no effect on the calling handler.
If you pass a variable by value to another handler, the other handler can't affect the variable's value in the original handler.
Related
glossary: handler, parameter, variable, argument, value, call